home *** CD-ROM | disk | FTP | other *** search
- ;------------------------------------------------------------------------------
- ; .ss.
- ; `²²'
- ; .,sS$Ss,,s$ .,sS$$$Ss. .,sS$Ss,,s$ .ss. .sSs.
- ; .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
- ; $$$' .$$$' $$$²Sçsµ²' .$$$' .$$$'.$$$' .$$$' `$$b.
- ; $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$' ;$$$
- ; `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
- ; .sS²°$$$²²°"' d²°'
- ; .$$² .$$'
- ; $$$.,d$$'
- ; `²S$$S²'
- ;------------------------------------------------------------------------------
- ; P.P.L.X. 2.OO (C)1996 - Lone Runner / AEGiS CoRP'96
- ;------------------------------------------------------------------------------
- ; PPE 3.2O (Encryption type I) - Analysis ON - Postprocessing ON
- ;------------------------------------------------------------------------------
-
- String STRING003
- String STRING004
-
- ;------------------------------------------------------------------------------
-
- :LABEL001
- Cls
- Input "@X09Please enter user's record number?@X07", STRING003
- If (STRING003 == "") Then
- Stop
- Else
- Gosub LABEL002
- Endif
- :LABEL002
- GetAltUser STRING003
- If (CurUser() == -1) Then
- Stop
- Else
- Gosub LABEL003
- Endif
- :LABEL003
- Cls
- Print "@X0ENAME : @X0F" + U_Name()
- Newline
- Print "@X0ECITY :@X0F " + U_City
- Newline
- Print "@X0EALIAS : @X0F" + U_Alias
- Newline
- Print "@X0EPASSWORD : @X0F"
- Input U_Expert, BOOLEAN00
- Newline
- Print "@X0ELAST LOGON :@X0F ", U_LDate()
- Newline
- Print "@X0EUSER COMMENT :@X0F ", U_Cmnt1
- Newline
- Print "@X0ESYSOP COMMENT :@X0F ", U_Cmnt2
- Newline
- Print "@X0ESECURITY LEVEL : @X0F", U_Sec
- Newline
- Print "@X0EEXPERATION DATE : @X0F", U_ExpDate
- Newline
- Print "@X0ETRANFER PROTOCAL :@X0F ", U_Trans
- Newline
- Print "@X0EHOME\VOICE PHONE :@X0F ", U_HVPhone
- Newline
- Print "@X0EBUSINESS\DATA PHONE :@X0F ", U_BDPhone
- Newline
- Print "@X0EEXPIRED SECURITY LEVEL : @X0F", U_ExpSec
- Newline
- Print "@X0ENUMBER OF TIMES ON SYSTEM :@X0F ", U_Logons()
- If (Psa(6)) Then
- Gosub LABEL004
- Else
- Gosub LABEL005
- Endif
- :LABEL004
- Newline
- Newline
- Print "@X0ENOTES PSA - LINE 1 :@X0F ", U_Notes(0)
- Print "@X0ENOTES PSA - LINE 2 :@X0F ", U_Notes(1)
- Print "@X0ENOTES PSA - LINE 3 :@X0F ", U_Notes(2)
- Print "@X0ENOTES PSA - LINE 4 :@X0F ", U_Notes(3)
- Print "@X0ENOTES PSA - LINE 5 :@X0F ", U_Notes(4)
- Gosub LABEL005
- :LABEL005
- Newline
- InputYN "@X09DO YOU WANT TO VIEW ANOTHER USER?@X07 ", STRING004, 9
- Print "@X07"
- Select Case (STRING004)
- Case "y"
- Gosub LABEL001
- Case "Y"
- Gosub LABEL001
- Case "N"
- PutUser
- Stop
- Case Else
- PutUser
- Stop
- End Select
-
- ;------------------------------------------------------------------------------
- ;
- ; Usage report (before postprocessing)
- ;
- ; ■ Statements used :
- ;
- ; 2 Cls
- ; 12 Goto
- ; 20 Print
- ; 6 If
- ; 2 Input
- ; 2 PutUser
- ; 1 InputYN
- ; 7 Gosub
- ; 16 Newline
- ; 4 Stop
- ; 1 GetAltUser
- ;
- ;
- ; ■ Functions used :
- ;
- ; 5 +
- ; 5 ==
- ; 6 !
- ; 1 U_Name()
- ; 1 U_LDate()
- ; 1 U_Logons()
- ; 1 Psa()
- ; 1 CurUser()
- ;
- ;------------------------------------------------------------------------------
- ;
- ; Analysis flags : WR
- ;
- ; W - Write user ■ 5
- ; Program writes a user record. Although this may be normal for a
- ; User Editor, it may also be a way to modify an account level.
- ; ■ Search for : PUTUSER
- ;
- ; R - Read user ■ 5
- ; User records are read, this may signify that someone wants to get
- ; various informations about a user (for example his password), but
- ; this may also be normal for a program accessing user records (for
- ; example a User Editor)
- ; ■ Search for : GETALTUSER
- ;
- ;------------------------------------------------------------------------------
- ;
- ; Postprocessing report
- ;
- ; 0 For/Next
- ; 0 While/EndWhile
- ; 3 If/Then or If/Then/Else
- ; 1 Select Case
- ;
- ;------------------------------------------------------------------------------
- ; AEGiS Corp - Break the routines, code against the machines!
- ;------------------------------------------------------------------------------
-